home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / adaptor.zip / ADAPT.ZIP / adaptor / src / include / semdecls.h < prev    next >
C/C++ Source or Header  |  1994-01-03  |  463b  |  25 lines

  1. # ifndef yySemDecls
  2. # define yySemDecls
  3.  
  4. # if defined __STDC__ | defined __cplusplus
  5. # define ARGS(parameters)    parameters
  6. # else
  7. # define ARGS(parameters)    ()
  8. # endif
  9.  
  10. # ifndef bool
  11. # define bool char
  12. # endif
  13.  
  14. # include "Tree.h"
  15. # include "Definiti.h"
  16.  
  17.  
  18. extern void SemDefinitions ARGS((tDefinitions t));
  19. extern void SemDeclarations ARGS((tTree t, tTree current_unit));
  20.  
  21. extern void BeginSemDecls ();
  22. extern void CloseSemDecls ();
  23.  
  24. # endif
  25.